.hero-section--contact {
    background-image: url('/03 support/img/contact-hero.webp');
  }
  
  .section--contact {
    padding: 100px 48px;
    background: var(--color-white);
  }
  
  .contact-inner {
    max-width: 1240px;
    margin: 0 auto;
  }
  
  /* 본문 좌우 구조 */
  .contact-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
  }
  
  /* 왼쪽 텍스트 영역 */
  .contact-description {
    flex: 1;
    max-width: 440px;
    text-align: left;
  }
  
  .contact-description .title {
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .contact-description .subtitle {
    font-size: 1rem;
    color: var(--color-gray-400);
    line-height: 1.6;
  }
  
  /* 오른쪽 폼 */
  .contact-form {
    flex: 1;
    background: white;
    border-radius: 1rem;
    padding: 40px;
    border: 1px solid var(--color-gray-100);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  /* 이름/연락처 2단 */
  .form-row {
    display: flex;
    gap: 1rem;
  }
  
  /* 인풋 공통 */
  .form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .form-field label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-black);
  }
  
  .form-field input,
  .form-field textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    resize: none;
  }
  
  /* 동의 체크 */
  .form-agree {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    gap: 0.5rem;
    color: var(--color-gray-700);
  }
  
  /* 전송 버튼 */
  .form-submit {
    background-color: var(--color-primary-700);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  
  .form-submit:hover {
    background-color: #3572e5;
  }

  /* 반응형: 1024px 이하 */
  @media (max-width: 1024px) {
    .contact-body {
      flex-direction: column;
      align-items: stretch;
      gap: 40px;
      padding: 0 0.5rem;
    }
  
    .contact-description {
      max-width: 100%;
      text-align: left;
    }
  
    .contact-form {
      padding: 0px;
      box-shadow: none;
      gap: 1.5rem;
      border: none;
    }
  
    .form-row {
      flex-direction: column;
      gap: 1rem;
    }

    .section--contact {
      padding: 60px 24px;
      background: var(--color-white);
    }

    .contact-form{
      box-shadow: none;
    }
  }

  @media (max-width: 768px) {

    .contact-description .title {
      font-size: 1.625rem;
    }
    
    .contact-description .subtitle {
      font-size: 0.875rem;
      color: var(--color-gray-400);
      line-height: 1.6;
    }
  }

